Browse Source

delete thread header for fix 0.7r java api bugs

pull/6218/head
yeyunpeng 5 years ago
parent
commit
41fd02baf3
3 changed files with 5 additions and 6 deletions
  1. +3
    -4
      mindspore/lite/java/native/runtime/context.cpp
  2. +1
    -1
      mindspore/lite/test/models_mindspore.cfg
  3. +1
    -1
      mindspore/lite/test/models_tflite_awaretraining.cfg

+ 3
- 4
mindspore/lite/java/native/runtime/context.cpp View File

@@ -18,7 +18,6 @@
#include <jni.h>
#include "common/ms_log.h"
#include "include/context.h"
#include "include/thread_pool_config.h"

extern "C" JNIEXPORT jlong JNICALL Java_com_mindspore_lite_context_Context_createContext(JNIEnv *env, jobject thiz,
jint device_type,
@@ -45,13 +44,13 @@ extern "C" JNIEXPORT jlong JNICALL Java_com_mindspore_lite_context_Context_creat
}
switch (cpu_bind_mode) {
case -1:
context->cpu_bind_mode_ = MID_CPU;
context->cpu_bind_mode_ = mindspore::lite::MID_CPU;
break;
case 0:
context->cpu_bind_mode_ = NO_BIND;
context->cpu_bind_mode_ = mindspore::lite::NO_BIND;
break;
case 1:
context->cpu_bind_mode_ = HIGHER_CPU;
context->cpu_bind_mode_ = mindspore::lite::HIGHER_CPU;
break;
default:
MS_LOGE("Invalid cpu_bind_mode : %d", cpu_bind_mode);


+ 1
- 1
mindspore/lite/test/models_mindspore.cfg View File

@@ -1,2 +1,2 @@
ssd.pb
#ssd.pb
mobilenet_v2.pb

+ 1
- 1
mindspore/lite/test/models_tflite_awaretraining.cfg View File

@@ -1,5 +1,5 @@
video_infer.tflite
mobilenet_v1_1.0_224_quant.tflite
#mobilenet_v1_1.0_224_quant.tflite
mobilenet_v2_1.0_224_quant.tflite
hiai_graph_8bit_combined.tflite
inception_v1_224_quant.tflite


Loading…
Cancel
Save